a0f3713cdded1504c73ae6ad7dbd2db20f8cef13,gdx/src/com/badlogic/gdx/graphics/g3d/utils/AnimationController.java,AnimationController,action,#String#number#number#AnimationListener#number#,210
Before Change
/** Apply an action animation on top of the current animation. */
public void action(final String id, int loopCount, float speed, final AnimationListener listener, float transitionTime) {
action(obtain(id, loopCount, speed, listener), transitionTime);
}
/** Apply an action animation on top of the current animation. */
After Change
* @return The {@link AnimationDesc} which can be read to get the progress of the animation. Will be invalid when the
* animation is completed. */
public AnimationDesc action(final String id, int loopCount, float speed, final AnimationListener listener, float transitionTime) {
return action(obtain(id, loopCount, speed, listener), transitionTime);
}
/** Apply an action animation on top of the current animation. */